home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Meeting.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  516 b   |  43 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       goNext()
  8.     #clicks:
  9.       goNext()
  10.     #z:
  11.       leaveThisMovie()
  12.   end case
  13. end
  14.  
  15. on goBack
  16.   stopSound2()
  17.   case gSection of
  18.     #X:
  19.       goIntro()
  20.     #clicks:
  21.       goPrev()
  22.     #z:
  23.   end case
  24. end
  25.  
  26. on leaveThisMovie
  27.   if iAmActivated(gMasterData) then
  28.     getPrintData()
  29.   end if
  30.   stopSound2()
  31.   cursor(4)
  32.   go(1, "Menu3")
  33. end
  34.  
  35. on notePadButton
  36.   DoNotepad()
  37. end
  38.  
  39. on continueNext
  40.   stopSound2()
  41.   go(the frame + 1)
  42. end
  43.